home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Learn Microsoft Visual Basic 6.0 Now
/
Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO
/
media
/
chap10
/
b10d020.cc2
< prev
Wrap
Text File
|
1998-06-07
|
2KB
|
39 lines
0, Your assignment in Lab 10 is to create
3, an enhanced front end for the Biblio.mdb
6, database that includes Find, Add, and
10, Delete capabilities. Your solution should
12, look like the program I'm running now.
15, Like the previous demonstration, you
17, should be able to use the data object to
19, explore the database. In addition, you
25, should be able to use the Find, Add, and
29, Delete buttons to modify the database. The
33, Find button lets you can search the
34, database for a matching book title. If your
37, search for the database title exists,
40, the program should locate it and display
42, it. When I click the Find button, I have
45, a Search dialog box. And if I type Using
48, SQL, a book I know is in the database,
53, and click OK, it appears in the database
56, window. The Add button lets you add a
60, new database record. When I click the
64, button, I receive a dialog box with
65, instructions. When I click OK, I get a chance
69, to enter my new record. I'll type the
71, fictitious book, The New Joy of Databases,
78, which is a 6 x 9 title, 500 pages, has
84, an ISBN of 155615-275x, and was published
97, in 1997. So, when I click the left
103, arrow, it adds it to the database in
105, alphabetical order. If I go ahead and search
110, for that record to verify that it's there,
118, the program displays it in the window.
122, Finally, I should verify that my Delete
123, button works okay. When I click the
125, Delete button, I see "Delete record. Do you
128, really want to delete this record?", a
130, good safety check. When I click OK, that
133, record is deleted from the database.
136, Best of luck.
138, END